home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / FLAT.ZIP / FLATSEAR.H < prev    next >
C/C++ Source or Header  |  1993-07-10  |  1KB  |  40 lines

  1. #ifndef _FLATSEARCH_H
  2. #define _FLATSEARCH_H
  3.  
  4. typedef enum {SearchForAll, SearchForInvoice, SearchForName, SearchForCompany,
  5. SearchForState, SearchForCountry, SearchForProduct,
  6. SearchForYear} SEARCHFORTYPE;
  7.  
  8. void SetAllSearchs(HWND);
  9. BOOL GetAllSearch (void);
  10. BOOL GetInvoiceSearch(void);
  11. BOOL GetNameSearch (void);
  12. BOOL GetCompanySearch (void);
  13. BOOL GetStateSearch (void);
  14. BOOL GetCountrySearch (void);
  15. BOOL GetProductSearch (void);
  16. BOOL GetYearSearch (void);
  17. void SetAllSearch (BOOL);
  18. void SetInvoiceSearch(BOOL);
  19. void SetNameSearch (BOOL);
  20. void SetCompanySearch (BOOL);
  21. void SetStateSearch (BOOL);
  22. void SetCountrySearch (BOOL);
  23. void SetProductSearch (BOOL);
  24. void SetYearSearch (BOOL);
  25. BOOL SetSearch(HWND);
  26. BOOL CALLBACK _export SearchProc(HWND, UINT, WPARAM, LPARAM);
  27. void SetSearchString(HWND, SEARCHFORTYPE);
  28. BOOL CALLBACK _export SearchForProc(HWND, UINT, WPARAM, LPARAM);
  29. void NulSearchData(void);
  30. void GetSearchInvoiceStr(LPSTR);
  31. void GetSearchNameStr(LPSTR);
  32. void GetSearchCompanyStr(LPSTR);
  33. void GetSearchStateStr(LPSTR);
  34. void GetSearchCountryStr(LPSTR);
  35. void GetSearchProductStr(LPSTR);
  36. void GetSearchYearStr(LPSTR);
  37.  
  38.  
  39. #endif
  40.